type flag.int64Value
8 uses
flag (current package)
flag.go#L177: type int64Value int64
flag.go#L179: func newInt64Value(val int64, p *int64) *int64Value {
flag.go#L181: return (*int64Value)(p)
flag.go#L184: func (i *int64Value) Set(s string) error {
flag.go#L189: *i = int64Value(v)
flag.go#L193: func (i *int64Value) Get() any { return int64(*i) }
flag.go#L195: func (i *int64Value) String() string { return strconv.FormatInt(int64(*i), 10) }
flag.go#L594: case *intValue, *int64Value:
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |